home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / GameboyDev / GBDK / lib / gprint.c < prev    next >
C/C++ Source or Header  |  1999-03-29  |  83b  |  8 lines

  1. #include <drawing.h>
  2.  
  3. void gprint(char *str)
  4. {
  5.   while(*str)
  6.     wrtchr(*str++);
  7. }
  8.